| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- // @ts-nocheck
- import { PermissionAction } from '@supabase/shared-types/out/constants'
- import { useParams } from 'common'
- import { partition } from 'lodash'
- import { ArrowRight, GitMerge, MessageCircle, MoreVertical, Shield, X } from 'lucide-react'
- import { useRouter } from 'next/router'
- import { PropsWithChildren } from 'react'
- import { toast } from 'sonner'
- import {
- Button,
- DropdownMenu,
- DropdownMenuContent,
- DropdownMenuItem,
- DropdownMenuTrigger,
- Tooltip,
- } from 'ui'
- import { GenericSkeletonLoader } from 'ui-patterns/ShimmeringLoader'
- import {
- BranchManagementSection,
- BranchRow,
- } from '@/components/interfaces/BranchManagement/BranchPanels'
- import { BranchSelector } from '@/components/interfaces/BranchManagement/BranchSelector'
- import { PullRequestsEmptyState } from '@/components/interfaces/BranchManagement/EmptyStates'
- import BranchLayout from '@/components/layouts/BranchLayout/BranchLayout'
- import DefaultLayout from '@/components/layouts/DefaultLayout'
- import { PageLayout } from '@/components/layouts/PageLayout/PageLayout'
- import { ScaffoldContainer, ScaffoldSection } from '@/components/layouts/Scaffold'
- import AlertError from '@/components/ui/AlertError'
- import { DocsButton } from '@/components/ui/DocsButton'
- import NoPermission from '@/components/ui/NoPermission'
- import { useBranchUpdateMutation } from '@/data/branches/branch-update-mutation'
- import { Branch, useBranchesQuery } from '@/data/branches/branches-query'
- import { useGitHubConnectionsQuery } from '@/data/integrations/github-connections-query'
- import { useSendEventMutation } from '@/data/telemetry/send-event-mutation'
- import { useAsyncCheckPermissions } from '@/hooks/misc/useCheckPermissions'
- import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization'
- import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject'
- import { DOCS_URL } from '@/lib/constants'
- import type { NextPageWithLayout } from '@/types'
- const MergeRequestsPage: NextPageWithLayout = () => {
- const router = useRouter()
- const { ref } = useParams()
- const { data: project } = useSelectedProjectQuery()
- const { data: selectedOrg } = useSelectedOrganizationQuery()
- const isBranch = project?.parent_project_ref !== undefined
- const projectRef =
- project !== undefined ? (isBranch ? project.parent_project_ref : ref) : undefined
- const { can: canReadBranches, isSuccess: isPermissionsLoaded } = useAsyncCheckPermissions(
- PermissionAction.READ,
- 'preview_branches'
- )
- const {
- data: connections,
- error: connectionsError,
- isError: isErrorConnections,
- } = useGitHubConnectionsQuery({
- organizationId: selectedOrg?.id,
- })
- const {
- data: branches = [],
- error: branchesError,
- isPending: isLoadingBranches,
- isError: isErrorBranches,
- } = useBranchesQuery({ projectRef })
- const [[mainBranch], previewBranchesUnsorted] = partition(branches, (branch) => branch.is_default)
- const previewBranches = previewBranchesUnsorted.sort((a, b) =>
- new Date(a.updated_at) < new Date(b.updated_at) ? 1 : -1
- )
- const mergeRequestBranches = previewBranches.filter(
- (branch) =>
- branch.pr_number !== undefined ||
- (branch.review_requested_at !== undefined && branch.review_requested_at !== null)
- )
- const currentBranch = branches?.find((branch) => branch.project_ref === ref)
- const isCurrentBranchReadyForReview = !!currentBranch?.review_requested_at
- const githubConnection = connections?.find((connection) => connection.project.ref === projectRef)
- const repo = githubConnection?.repository.name ?? ''
- const isError = isErrorConnections || isErrorBranches
- const isGithubConnected = githubConnection !== undefined
- const { mutate: sendEvent } = useSendEventMutation()
- const { mutate: updateBranch, isPending: isUpdating } = useBranchUpdateMutation({
- onError: () => {
- toast.error(`Failed to update the branch`)
- },
- })
- const handleMarkBranchForReview = ({
- project_ref: branchRef,
- parent_project_ref: projectRef,
- persistent,
- }: Branch) => {
- updateBranch(
- {
- branchRef,
- projectRef,
- requestReview: true,
- },
- {
- onSuccess: () => {
- toast.success('Merge request created')
- // Track merge request creation
- sendEvent({
- action: 'branch_create_merge_request_button_clicked',
- properties: {
- branchType: persistent ? 'persistent' : 'preview',
- origin: 'merge_page',
- },
- groups: {
- project: projectRef ?? 'Unknown',
- organization: selectedOrg?.slug ?? 'Unknown',
- },
- })
- router.push(`/project/${branchRef}/merge`)
- },
- }
- )
- }
- const handleCloseMergeRequest = ({
- project_ref: branchRef,
- parent_project_ref: projectRef,
- }: Branch) => {
- updateBranch(
- {
- branchRef,
- projectRef,
- requestReview: false,
- },
- {
- onSuccess: () => {
- toast.success('Merge request closed')
- // Track merge request closed
- sendEvent({
- action: 'branch_close_merge_request_button_clicked',
- groups: {
- project: projectRef ?? 'Unknown',
- organization: selectedOrg?.slug ?? 'Unknown',
- },
- })
- },
- }
- )
- }
- const generateCreatePullRequestURL = (branch?: string) => {
- if (githubConnection === undefined) return 'https://github.com'
- return branch !== undefined
- ? `https://github.com/${githubConnection.repository.name}/compare/${mainBranch?.git_branch}...${branch}`
- : `https://github.com/${githubConnection.repository.name}/compare`
- }
- return (
- <ScaffoldContainer>
- <ScaffoldSection>
- <div className="col-span-12">
- <div className="space-y-4">
- {isPermissionsLoaded && !canReadBranches ? (
- <NoPermission resourceText="view this project's branches" />
- ) : (
- <>
- {isErrorConnections && (
- <AlertError
- error={connectionsError}
- subject="Failed to retrieve GitHub integration connection"
- />
- )}
- {isErrorBranches && (
- <AlertError error={branchesError} subject="Failed to retrieve preview branches" />
- )}
- {!isError && (
- <div className="space-y-4">
- {isBranch && !isCurrentBranchReadyForReview && currentBranch && (
- <div className="rounded-sm border rounded-lg bg-background px-6 py-4">
- <div className="flex items-center justify-between">
- <div className="flex items-center gap-2 text-sm text-foreground-light">
- <GitMerge strokeWidth={1.5} size={16} className="text-brand" />
- <span className="text-foreground">{currentBranch.name}</span>
- last viewed
- </div>
- <Button
- type="primary"
- size="tiny"
- loading={currentBranch && isUpdating}
- onClick={() =>
- currentBranch && handleMarkBranchForReview(currentBranch)
- }
- >
- Create merge request
- </Button>
- </div>
- </div>
- )}
- <BranchManagementSection
- header={`${mergeRequestBranches.length} merge requests`}
- >
- {isLoadingBranches ? (
- <div className="p-4">
- <GenericSkeletonLoader />
- </div>
- ) : mergeRequestBranches.length > 0 ? (
- mergeRequestBranches.map((branch) => {
- const isPR = branch.pr_number !== undefined
- const rowLink = isPR
- ? `https://github.com/${repo}/pull/${branch.pr_number}`
- : `/project/${branch.project_ref}/merge`
- return (
- <BranchRow
- isGithubConnected={isGithubConnected}
- key={branch.id}
- label={
- <div className="flex items-center gap-x-4">
- {branch.name}
- <ArrowRight
- size={14}
- strokeWidth={1.5}
- className="text-foreground-lighter"
- />
- <div className="flex items-center gap-x-2">
- {branch.pr_number ? (
- <p className="text-foreground-lighter">#{branch.pr_number}</p>
- ) : (
- <>
- <Shield
- size={14}
- strokeWidth={1.5}
- className="text-warning"
- />
- <p className="text-foreground-lighter">{mainBranch.name}</p>
- </>
- )}
- </div>
- </div>
- }
- repo={repo}
- branch={branch}
- rowLink={rowLink}
- external={isPR}
- rowActions={
- // We always want to show the action button to close a merge request
- // when user has requested review from dashboard. It doesn't matter
- // whether the branch is linked to a GitHub PR.
- branch.review_requested_at && (
- <DropdownMenu>
- <DropdownMenuTrigger asChild>
- <Button
- type="text"
- icon={<MoreVertical />}
- className="px-1"
- onClick={(e) => e.stopPropagation()}
- />
- </DropdownMenuTrigger>
- <DropdownMenuContent className="w-56" side="bottom" align="end">
- <Tooltip>
- <DropdownMenuItem
- className="gap-x-2"
- disabled={isUpdating}
- onSelect={(e) => {
- e.stopPropagation()
- handleCloseMergeRequest(branch)
- }}
- >
- <X size={14} /> Close this merge request
- </DropdownMenuItem>
- </Tooltip>
- </DropdownMenuContent>
- </DropdownMenu>
- )
- }
- />
- )
- })
- ) : (
- <PullRequestsEmptyState
- url={generateCreatePullRequestURL()}
- projectRef={projectRef ?? '_'}
- branches={previewBranches}
- onBranchSelected={handleMarkBranchForReview}
- isUpdating={isUpdating}
- hasGithubConnection={!!githubConnection}
- />
- )}
- </BranchManagementSection>
- </div>
- )}
- </>
- )}
- </div>
- </div>
- </ScaffoldSection>
- </ScaffoldContainer>
- )
- }
- const MergeRequestsPageWrapper = ({ children }: PropsWithChildren<{}>) => {
- const router = useRouter()
- const { ref } = useParams()
- const { data: project } = useSelectedProjectQuery()
- const { data: selectedOrg } = useSelectedOrganizationQuery()
- const isBranch = project?.parent_project_ref !== undefined
- const projectRef =
- project !== undefined ? (isBranch ? project.parent_project_ref : ref) : undefined
- const { data: branches } = useBranchesQuery({ projectRef })
- const previewBranches = (branches || []).filter((b) => !b.is_default)
- const { mutate: sendEvent } = useSendEventMutation()
- const { mutate: updateBranch, isPending: isUpdating } = useBranchUpdateMutation({
- onError: () => {
- toast.error(`Failed to update the branch`)
- },
- })
- const handleMarkBranchForReview = ({
- project_ref: branchRef,
- parent_project_ref: projectRef,
- persistent,
- }: Branch) => {
- updateBranch(
- {
- branchRef,
- projectRef,
- requestReview: true,
- },
- {
- onSuccess: () => {
- toast.success('Merge request created')
- // Track merge request creation
- sendEvent({
- action: 'branch_create_merge_request_button_clicked',
- properties: {
- branchType: persistent ? 'persistent' : 'preview',
- origin: 'branch_selector',
- },
- groups: {
- project: projectRef ?? 'Unknown',
- organization: selectedOrg?.slug ?? 'Unknown',
- },
- })
- router.push(`/project/${branchRef}/merge`)
- },
- }
- )
- }
- return (
- <PageLayout
- title="Merge requests"
- subtitle="Review and merge changes from one branch into another"
- primaryActions={
- <BranchSelector
- branches={previewBranches}
- onBranchSelected={handleMarkBranchForReview}
- disabled={!projectRef}
- isUpdating={isUpdating}
- />
- }
- secondaryActions={
- <div className="flex items-center gap-x-2">
- <Button
- asChild
- type="text"
- icon={<MessageCircle className="text-muted" strokeWidth={1} />}
- >
- <a
- target="_blank"
- rel="noreferrer"
- href="https://github.com/orgs/briven/discussions/18937"
- >
- Branching feedback
- </a>
- </Button>
- <DocsButton href={`${DOCS_URL}/guides/platform/branching`} />
- </div>
- }
- >
- {children}
- </PageLayout>
- )
- }
- MergeRequestsPage.getLayout = (page) => {
- return (
- <DefaultLayout>
- <BranchLayout>
- <MergeRequestsPageWrapper>{page}</MergeRequestsPageWrapper>
- </BranchLayout>
- </DefaultLayout>
- )
- }
- export default MergeRequestsPage
|